home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / ULookupCommand.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  664 b   |  36 lines  |  [TEXT/MPS ]

  1. //    ULookupCommand.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the class for TLookup command, used for
  5. //    doing the query over the network
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __LOOKUPCOMMAND__
  11. #define __LOOKUPCOMMAND__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. #ifndef __AEDOCUMENT__
  18. #include "UAEDocument.h"
  19. #endif
  20.  
  21. class TAEDocument;
  22.  
  23. class TLookupCommand : public TCommand
  24. {
  25. public:
  26.     TLookupCommand();
  27.     virtual pascal void ILookupCommand(CommandNumber,
  28.                                        TAEDocument*);
  29.     virtual pascal void DoIt();
  30.  
  31.     TAEDocument* fDocument;
  32. };
  33.  
  34. #endif __LOOKUPCOMMAND__
  35.  
  36.